Package-level declarations

Types

Link copied to clipboard
class ScanbotSdkVinScanner : SelfDisposable, VinScanner

API for VIN scanning.

Link copied to clipboard

Status of the barcode extraction.

Link copied to clipboard
data class VinBarcodeResult(val extractedVIN: String, val rectangle: List<Point>, val status: VinBarcodeExtractionStatus) : Parcelable

Result of the barcode scanner.

Link copied to clipboard
interface VinScanner

Interface for VinScanner API. See class documentation for more details.

Link copied to clipboard
data class VinScannerConfiguration(var optimizeSingleLine: Boolean = true, var extractVINFromBarcode: Boolean = false, var ocrResolutionLimit: Int = 0, var maximumNumberOfAccumulatedFrames: Int = 3, var minimumNumberOfRequiredFramesWithEqualScanningResult: Int = 2) : Parcelable

Configuration for the VIN scanner.

Link copied to clipboard
data class VinScannerResult(val textResult: TextPatternScannerResult, val barcodeResult: VinBarcodeResult) : Parcelable

Result of the VIN scanner.